home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / nolog.sql < prev    next >
Text File  |  2000-05-12  |  811b  |  22 lines

  1. /* RCSVER $Id: nolog.sql,v 1.2 1999-02-24 14:40:24-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        nolog.sql
  6. * Date:        02/19/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the nolog table. This table contains record types   
  9. *        that are not to be logged to the output file.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE nolog
  13. (
  14.     record_type    NUMBER(38)    /* Record type */
  15.         CONSTRAINT ref1_nolog REFERENCES rectypes(record_type)
  16.         ON DELETE CASCADE,
  17.     config_num    NUMBER(38)
  18.         CONSTRAINT ref2_nolog REFERENCES configset(num)
  19.         ON DELETE CASCADE,
  20.     CONSTRAINT pk_nolog PRIMARY KEY (record_type, config_num)
  21. );
  22.